GetInlineStylesForNodeResponse

data class GetInlineStylesForNodeResponse(inlineStyle: CSSStyle?, attributesStyle: CSSStyle?)

Represents response frame that is returned from CSS#getInlineStylesForNode operation call. Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM attributes) for a DOM node identified by nodeId.

See also

Constructors

GetInlineStylesForNodeResponse
Link copied to clipboard
fun GetInlineStylesForNodeResponse(inlineStyle: CSSStyle? = null, attributesStyle: CSSStyle? = null)

Properties

attributesStyle
Link copied to clipboard
val attributesStyle: CSSStyle? = null
Attribute-defined element style (e.g.
inlineStyle
Link copied to clipboard
val inlineStyle: CSSStyle? = null
Inline style for the specified DOM node.

Sources

jvm source
Link copied to clipboard